cy.visit(url): Navigates to a specified URL.
cy.reload(): Reloads the current page.
cy.go(direction): Navigates forward or backward in the browser history.
cy.click(): Clicks on an element.
cy.dblclick(): Double-clicks on an element.
cy.rightclick(): Right-clicks on an element.
cy.type(text): Types text into an input field.
cy.clear(): Clears the value of an input field.
cy.check() / cy.uncheck(): Checks or unchecks a checkbox or radio button.
cy.select(value): Selects an option from a dropdown.
cy.focus() / cy.blur(): Focuses or blurs an element.
cy.scrollTo(position): Scrolls the page to a specific position.
cy.trigger(event): Triggers a specific event on an element.